Fixed comments
authorKalita Alexey <kalita.alexey@outlook.com>
Tue, 24 Jan 2017 16:40:20 +0000 (19:40 +0300)
committerKalita Alexey <kalita.alexey@outlook.com>
Tue, 24 Jan 2017 16:40:40 +0000 (19:40 +0300)
[ci skip]

src/doc/manifest.md

index 5a61c741dd34b31cf25a3637869854da53a8ed16..b6bbb328e7e2c7665cee4099582394850fd7ca4f 100644 (file)
@@ -451,8 +451,7 @@ To structure your code after you've created the files and folders for your proje
 Files located under `examples` are example uses of the functionality provided by
 the library. When compiled, they are placed in the `target/examples` directory.
 
-They may compile either as executables (with a `main()` function) or as libraries.
-They load in the library by using `extern crate <library-name>`. They are compiled when you run
+They can compile either as executables (with a `main()` function) or libraries and pull in the library by using `extern crate <library-name>`. They are compiled when you run
 your tests to protect them from bitrotting.
 
 You can run individual executable examples with the command `cargo run --example
@@ -460,7 +459,7 @@ You can run individual executable examples with the command `cargo run --example
 
 Specify `crate-type` to make an example be compiled as a library:
 ```toml
-[[example.example]]
+[[example.foo]]
 crate-type = ["staticlib"]
 ```